crypto/x509.pkcs1PublicKey.E (field)

17 uses

	crypto/x509 (current package)
		parser.go#L249: 			E: p.E,
		pkcs1.go#L73: 		E: priv.E,
		pkcs1.go#L115: 		E:       key.PublicKey.E,
		pkcs1.go#L159: 		E: pub.E,
		pkcs1.go#L170: 		E: key.E,
		x509.go#L89: 			E: pub.E,

	crypto/rsa
		rsa.go#L51: 	E int      // public exponent
		rsa.go#L69: 	return bigIntEqual(pub.N, xx.N) && pub.E == xx.E
		rsa.go#L102: 	if pub.E < 2 {
		rsa.go#L105: 	if pub.E > 1<<31-1 {
		rsa.go#L257: 	de := new(big.Int).SetInt64(int64(priv.E))
		rsa.go#L335: 				E: int(e64),
		rsa.go#L353: 	priv.E = 65537
		rsa.go#L427: 		e := big.NewInt(int64(priv.E))
		rsa.go#L492: 	e := uint(pub.E)
		rsa.go#L688: 		c1 := bigmod.NewNat().ExpShortVarTime(m, uint(priv.E), N)